Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632706 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game

assets/ cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game/assets/
1 Items
  • stack-demoo.gif
  • README.md cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game/README.md
    172 Views
    0 Comments
    # Stack Game

    <h3> Tech Stack Used <img src = "https://media2.giphy.com/media/QssGEmpkyEOhBCb7e1/giphy.gif?cid=ecf05e47a0n3gi1bfqntqmob8g9aid1oyj2wr3ds3mg700bl&rid=giphy.gif" width = 32px> </h3>
    <p align="left"> <a href="https://www.w3.org/html/" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg" alt="html5" width="40" height="40"/> </a> <a href="https://www.w3schools.com/css/" target="_blank"> <img src="https://raw.githubusercontent
    style.css cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game/style.css
    142 Views
    0 Comments
    @import url("https://fonts.googleapis.com/css?family=Comfortaa");
    html, body {
    margin: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
    position: relative;
    font-family: "Comfortaa", cursive;
    index.html cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game/index.html
    379 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en" >
    <head>
    <meta charset="UTF-8">
    <title>DragonUncaged_Stack_Game</title>
    <link rel="stylesheet" href="./style.css">

    </head>
    script.js cody/swapnilsparsh/30DaysOfJavaScript/134 - Stack Game/script.js
    209 Views
    0 Comments
    "use strict";
    console.clear();
    class Stage {
    constructor() {
    // container
    this.render = function () {
    this.renderer.render(this.scene, this.camera);
    };